home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Animacje, filmy i prezentacje / Modelowanie 3D / K-3D 0.6.5.0 / k3d-all-in-one-setup-0.6.5.0.exe / aqsis-setup-1.1.0-2006-12-09.exe / include / aqsis / random.h < prev    next >
Encoding:
C/C++ Source or Header  |  2006-06-14  |  4.2 KB  |  125 lines

  1. // Aqsis
  2. // Copyright ⌐ 1997 - 2001, Paul C. Gregory
  3. //
  4. // Contact: pgregory@aqsis.org
  5. //
  6. // This library is free software; you can redistribute it and/or
  7. // modify it under the terms of the GNU General Public
  8. // License as published by the Free Software Foundation; either
  9. // version 2 of the License, or (at your option) any later version.
  10. //
  11. // This library is distributed in the hope that it will be useful,
  12. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  14. // General Public License for more details.
  15. //
  16. // You should have received a copy of the GNU General Public
  17. // License along with this library; if not, write to the Free Software
  18. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  19.  
  20.  
  21. /** \file
  22.         \brief Declares the CqRandom class responsible for producing random numbers.
  23.         \author Andrew Bromage (ajb@spamcop.net)
  24. */
  25.  
  26. // This implementation is based on the MT19937 (Mersenne Twister)
  27. // generator by Takuji Nishimura and Makoto Matsumoto.  The original
  28. // copyright notice follows.
  29.  
  30. //? Is random.h included already?
  31. #ifndef RANDOM_H_INCLUDED
  32. #define RANDOM_H_INCLUDED 1
  33.  
  34. #include    <stdlib.h>
  35.  
  36. #include    "aqsis.h"
  37.  
  38.  
  39. START_NAMESPACE( Aqsis )
  40. /*
  41.    A C-program for MT19937, with initialization improved 2002/1/26.
  42.    Coded by Takuji Nishimura and Makoto Matsumoto.
  43.  
  44.    Before using, initialize the state by using init_genrand(seed)  
  45.    or init_by_array(init_key, key_length).
  46.  
  47.    Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
  48.    All rights reserved.                          
  49.  
  50.    Redistribution and use in source and binary forms, with or without
  51.    modification, are permitted provided that the following conditions
  52.    are met:
  53.  
  54.      1. Redistributions of source code must retain the above copyright
  55.         notice, this list of conditions and the following disclaimer.
  56.  
  57.      2. Redistributions in binary form must reproduce the above copyright
  58.         notice, this list of conditions and the following disclaimer in the
  59.         documentation and/or other materials provided with the distribution.
  60.  
  61.      3. The names of its contributors may not be used to endorse or promote 
  62.         products derived from this software without specific prior written 
  63.         permission.
  64.  
  65.    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  66.    "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  67.    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  68.    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  69.    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
  70.    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  71.    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  72.    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
  73.    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  74.    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  75.    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  76.  
  77.  
  78.    Any feedback is very welcome.
  79.    http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/emt.html
  80.    email: m-mat @ math.sci.hiroshima-u.ac.jp (remove space)
  81. */
  82.  
  83. //----------------------------------------------------------------------
  84. /** \class CqRandom
  85.  * A random number generator class.
  86.  */
  87.  
  88. class CqRandom
  89. {
  90.     public:
  91.         CqRandom();
  92.  
  93.         CqRandom( TqUint Seed );
  94.  
  95.         /** Get a random integer in the range (0 <= value < 2^32).
  96.          */
  97.         TqUint RandomInt();
  98.  
  99.  
  100.         /** Get a random integer in the specified range (0 <= value < Range).
  101.          * \param Range Integer max value.
  102.          */
  103.         TqUint RandomInt( TqUint Range );
  104.  
  105.         /** Get a random float (0.0 <= value < 1.0).
  106.          */
  107.         TqFloat    RandomFloat();
  108.  
  109.  
  110.         /** Get a random float in the specified range (0 <= value < Range).
  111.          * \param Range The max value for the range.
  112.          */
  113.         TqFloat    RandomFloat( TqFloat Range );
  114.  
  115.         void    Reseed(TqUint Seek);
  116.     protected:
  117.         void NextState();
  118. };
  119.  
  120. //-----------------------------------------------------------------------
  121.  
  122. END_NAMESPACE( Aqsis )
  123.  
  124. #endif    // !RANDOM_H_INCLUDED
  125.